home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
TURB_VIS
/
TVSPY
/
TEXTCOLL.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1990-12-17
|
482b
|
26 lines
unit textcoll;
interface
uses objects;
type PTextCollection = ^TTextCollection;
TTextCollection = object(TCollection)
procedure Insert(Item: pointer); virtual;
procedure FreeItem(Item: pointer); virtual;
end;
implementation
procedure TTextCollection.Insert(Item: pointer);
begin
AtInsert(Count,Item);
end;
procedure TTextCollection.FreeItem(Item: pointer);
begin
if Item <> nil then DisposeStr(Item);
end;
end.